net/http.http2clientStream.ID (field)

17 uses

	net/http (current package)
		h2_bundle.go#L7443: 	ID            uint32
		h2_bundle.go#L8605: 	err = cc.writeHeaders(cs.ID, endStream, int(cc.maxFrameSize), hdrs)
		h2_bundle.go#L8617: 	if cs.ID == 0 {
		h2_bundle.go#L8657: 					cc.writeStreamReset(cs.ID, se.Code, err)
		h2_bundle.go#L8660: 				cc.writeStreamReset(cs.ID, http2ErrCodeCancel, err)
		h2_bundle.go#L8666: 			cc.writeStreamReset(cs.ID, http2ErrCodeNo, nil)
		h2_bundle.go#L8670: 	if cs.ID != 0 {
		h2_bundle.go#L8671: 		cc.forgetStreamID(cs.ID)
		h2_bundle.go#L8843: 			err = cc.fr.WriteData(cs.ID, sentEnd, data)
		h2_bundle.go#L8891: 		err = cc.writeHeaders(cs.ID, true, maxFrameSize, trls)
		h2_bundle.go#L8893: 		err = cc.fr.WriteData(cs.ID, true, nil)
		h2_bundle.go#L9188: 	cs.ID = cc.nextStreamID
		h2_bundle.go#L9190: 	cc.streams[cs.ID] = cs
		h2_bundle.go#L9191: 	if cs.ID == 0 {
		h2_bundle.go#L9660: 			cc.fr.WriteWindowUpdate(cs.ID, http2mustUint31(streamAdd))
		h2_bundle.go#L9805: 				cc.fr.WriteWindowUpdate(cs.ID, uint32(sendStream))
		h2_bundle.go#L9990: 	serr := http2streamError(cs.ID, f.ErrCode)